



public interface PriorityQueue {

    void insert( Comparable x );

    Comparable findMin( );

    Comparable deleteMin( );

    boolean isEmpty( );

    void makeEmpty( );
    
    int size( );  
}
